home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00101_ClickSetUp.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  2.8 KB  |  106 lines

  1. --
  2. -- ClickSetUp
  3. --
  4.  
  5. -- this class handles the pre-runtime initialization of Match Game data.
  6. -- this class can be discarded before protecting movies for distribution.
  7.  
  8. property ancestor
  9.  
  10. -- the following are constants:
  11. property spriteColor  -- the scoreColor of sprites that will be used for the Match Game
  12. property answerCast1  -- the castLib of the answerKeys
  13.  
  14.  
  15. on new me
  16.   -- set up all constants first:
  17.   set spriteColor = 2  -- corresponds to green in the score. (0 = white)
  18.   set answerCast1 = the number of castLib "clickables"
  19.   
  20.   set ancestor = new (script "ClickListMgmt")
  21.   setUp (me) -- automatic setup
  22.   
  23.   return me
  24. end
  25.  
  26.  
  27. on destruct me
  28.   if objectP (ancestor) then destruct (ancestor)
  29.   set ancestor = 0
  30. end
  31.  
  32.  
  33. -- do all pre-runtime setup work for the class and return to starting frame:
  34. -- (frame motion disabled for Nystrom set)
  35.  
  36. on setUp me
  37.   -- set startFrame = the frame
  38.   -- go frame setUpFrame
  39.   
  40.   -- initialize usable lists and check their integrity:
  41.   set spriteInfo = gatherSpriteInfo (me)
  42.   if not listP (spriteInfo) then
  43.     alert "Problem gathering sprite info."
  44.     return 0
  45.   end if
  46.   
  47.   set memberInfo = gatherMemberInfo (me)
  48.   if not listP (memberInfo) then
  49.     alert "Problem gathering member info."
  50.     return 0
  51.   end if
  52.   
  53.   -- add all correctly created lists to the project:
  54.   set initList = [:]
  55.   addProp (initList, #sprites, spriteInfo)
  56.   addProp (initList, #members, memberInfo)
  57.   setList (ancestor, initList)
  58.   
  59.   -- go frame startFrame
  60.   
  61.   -- if we have gotten to this point then do an ancestor setUp:
  62.   return setUp (ancestor)
  63. end
  64.  
  65.  
  66.  
  67. -- gather information of sprites to be used in the Match Game:
  68.  
  69. on gatherSpriteInfo me
  70.   set initList = [:]
  71.   set num = 0
  72.   
  73.   --cycle through all sprites:
  74.   repeat with spr = 1 to numSprites (me)
  75.     
  76.     -- sprites must be a certain color to be used in the Match Game:
  77.     if the scoreColor of sprite spr = spriteColor then
  78.       set num = num + 1
  79.       -- gather usable information:
  80.       set tmpLst = [#coverNum:0, #coverLib: 0, #loc:(the loc of sprite spr), #identifier:value ("#" & the name of member the memberNum of sprite spr of castLib the castLibNum of sprite spr), #myNum:the memberNum of sprite spr, #myLib:the castLibNum of sprite spr, #matchSprite:0, #matchSprite2:0, #showFlag:0]
  81.       
  82.       -- add to the initList
  83.       addProp (initList, spr, tmpLst)
  84.     end if
  85.   end repeat
  86.   
  87.   if not count (initList) then alert "There are no clickable sprites for this activity.  Check sprite score colors."
  88.   return initList
  89. end
  90.  
  91.  
  92.  
  93. -- gather information on members and castLibs to be used in the match game:
  94.  
  95. on gatherMemberInfo me
  96.   set m1 = getAvailableMemberList (me, answerCast1)
  97.   
  98.   -- add possible animations for these members:
  99.   addAnimations (me, answerCast1, m1)
  100.   
  101.   -- gather the lists of potential members:
  102.   set memList = [:]
  103.   addProp (memList, answerCast1, m1)
  104.   
  105.   return memList
  106. end